From 198cf93f0f62f9c8d701f782eb7ba6a5929a5548 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 20 Mar 2012 03:44:26 +0100 Subject: [PATCH] stylecontext: On failure, exit the loop, don't try again Because we will fail again. And then we try again. And then we fail again. Ad infinitum. --- gtk/gtkstylecontext.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c index 809605ea1a..1ca099d7e9 100644 --- a/gtk/gtkstylecontext.c +++ b/gtk/gtkstylecontext.c @@ -2469,7 +2469,7 @@ gtk_style_context_get_style_valist (GtkStyleContext *context, G_STRLOC, g_type_name (widget_type), prop_name); - continue; + break; } peek_value = _gtk_style_context_peek_style_property (context, widget_type, @@ -2484,6 +2484,7 @@ gtk_style_context_get_style_valist (GtkStyleContext *context, G_VALUE_TYPE_NAME (peek_value), error); g_free (error); + break; } prop_name = va_arg (args, const gchar *); -- 2.30.2